home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Amiga Classic Collection
/
The Amiga Classic Collection - Disc 1.iso
/
Demo
/
DE228-SongPlayer153.DMS
/
DE228-SongPlayer153.adf
/
songplayer
/
arexx
/
Status.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1999-09-22
|
243b
|
17 lines
/* Simple rexx test file for SongPlayer */
options results
options FailAt 100
address 'SONGPLAYER.1'
drop result
get_time
secs = result
get_selected
sel = result
get_state
sta = result
say 'time='secs' secs state='sta' selected='sel
exit